home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d11
/
egafnt25.arc
/
EGAFONTS.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-07-08
|
3KB
|
150 lines
ECHO OFF
PUSHDIR
REM C:
REM CD\EGAFONTS
TYPE EGAFONTS.ANS
RESPONSE ABCDEFGHIJKLMNOPQRSTUVWXY90
IF ERRORLEVEL=27 GOTO :END
IF ERRORLEVEL=26 GOTO :OFF
IF ERRORLEVEL=25 GOTO :Y
IF ERRORLEVEL=24 GOTO :X
IF ERRORLEVEL=23 GOTO :W
IF ERRORLEVEL=22 GOTO :V
IF ERRORLEVEL=21 GOTO :U
IF ERRORLEVEL=20 GOTO :T
IF ERRORLEVEL=19 GOTO :S
IF ERRORLEVEL=18 GOTO :R
IF ERRORLEVEL=17 GOTO :Q
IF ERRORLEVEL=16 GOTO :P
IF ERRORLEVEL=15 GOTO :O
IF ERRORLEVEL=14 GOTO :N
IF ERRORLEVEL=13 GOTO :M
IF ERRORLEVEL=12 GOTO :L
IF ERRORLEVEL=11 GOTO :K
IF ERRORLEVEL=10 GOTO :J
IF ERRORLEVEL=9 GOTO :I
IF ERRORLEVEL=8 GOTO :H
IF ERRORLEVEL=7 GOTO :G
IF ERRORLEVEL=6 GOTO :F
IF ERRORLEVEL=5 GOTO :E
IF ERRORLEVEL=4 GOTO :D
IF ERRORLEVEL=3 GOTO :C
IF ERRORLEVEL=2 GOTO :B
IF ERRORLEVEL=1 GOTO :A
GOTO :END
:OFF
EGAFONT OFF
GOTO :END
:Y
EGAFONT 3270PC.EGA
GOTO :END
:X
EGAFONT 3270-8.EGA
GOTO :END
:W
EGAFONT 3270.EGA
GOTO :END
:V
EGAFONT SIDE10.EGA
GOTO :END
:U
EGAFONT SENAPL.EGA
GOTO :END
:T
EGAFONT SCRIPT.EGA
GOTO :END
:S
EGAFONT PC8.EGA
GOTO :END
:R
EGAFONT PC24.EGA
GOTO :END
:Q
EGAFONT OLDENG.EGA
GOTO :END
:P
EGAFONT OCR.EGA
GOTO :END
:O
EGAFONT LPA.EGA
GOTO :END
:N
EGAFONT ITALICS.EGA
GOTO :END
:M
EGAFONT ITALIC.EGA
GOTO :END
:L
EGAFONT GEORGIAN.EGA
GOTO :END
:K
EGAFONT GAELIC.EGA
GOTO :END
:J
EGAFONT FRAKTUR.EGA
GOTO :END
:I
EGAFONT CNTDOWN.EGA
GOTO :END
:H
EGAFONT APLS11.EGA
GOTO :END
:G
EGAFONT APLS10.EGA
GOTO :END
:F
EGAFONT APLS9.EGA
GOTO :END
:E
EGAFONT APLS8.EGA
GOTO :END
:D
EGAFONT APLS7.EGA
GOTO :END
:C
EGAFONT APLS6.EGA
GOTO :END
:B
EGAFONT APLS.EGA
GOTO :END
:A
EGAFONT APL24.EGA
GOTO :END
:END
POPDIR
REM ═══════════════════════════════════════════════════════════════════════════
REM I created this batch file to make it easier to change EGA screen fonts by
REM listing all of the font options in a menu. Select the letter of the font
REM to which you wish to change the screen display.
REM
REM The menu also contains an option (9) to turn off a previously selected font
REM and return to normal display. Or you can select option 0 to exit without
REM changing the screen font.
REM
REM It appears that the screen font selected will be displayed in by all
REM programs that use text display until EGAFONT is turned off or until the
REM PC is re-booted.
REM
REM The menu is normally displayed in ANSI color graphics. If you do not wish
REM to use ANSI, substitute EGAFONTS.ASC for EGAFONTS.ANS in the 5th line of
REM this file. You can also edit/create your own custom fonts using EGAEDIT.
REM
REM You might want to place EGAFONT and all the font files in a separate
REM directory on your hard disk as I did and just leave EGAFONTS.BAT in a
REM directory on your normal path. If you do this, remove the "REM" from
REM lines 2 and 3 of this file and replace the drive and directory names
REM with your own, if different.
REM
REM The unrelated files RESPONSE.COM, PUSHDIR.COM, and POPDIR.COM are included
REM for use in this batch file.
REM
REM Have fun!
REM
REM Marty Shannon
REM Laser Printer Conference Sysop
REM CooperWorks BBS (Madison, Wi)
REM (608)251-7734
REM
REM May 9, 1987
REM ═══════════════════════════════════════════════════════════════════════════